home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 40 / Mac Magazin and MacEasy Magazine CD - Issue 40.iso / Software / Entwickler / Fantasm™5 Demo / Fantasm 5 / Anvil low level defs / General_usage.def < prev    next >
Text File  |  1997-08-31  |  2KB  |  134 lines

  1. **Bugs to lightsoft@zedworld.demon.co.uk
  2. **Thank you
  3.  
  4. *© Lightsoft 1995/1996.
  5.  
  6. ******General useage imports def.
  7. **This file should be the last .def to be included, so that the IFND directives
  8. **can take effect.
  9. **25th June 1996.
  10.  
  11.  
  12.     if PPC
  13. **INIT
  14.         ifnd    InitGraf
  15.             import    InitGraf
  16.         endc
  17.     
  18.         ifnd    InitFonts
  19.             import    InitFonts
  20.         endc
  21.  
  22.         ifnd    InitWindows    
  23.             import    InitWindows
  24.         endc
  25.     
  26.         ifnd    InitMenus
  27.             import    InitMenus
  28.         endc
  29.  
  30.         ifnd    TEInit
  31.             import    TEInit
  32.         endc
  33.  
  34.         ifnd    InitDialogs
  35.             import    InitDialogs
  36.         endif
  37.  
  38.         ifnd    InitCursor
  39.             import    InitCursor
  40.         endif
  41.     
  42. **Dialogs
  43.         ifnd    Alert
  44.             IMPORT    Alert
  45.         endif
  46.     
  47.         ifnd    NewDialog
  48.             IMPORT    NewDialog
  49.         endif
  50.     
  51.         ifnd    GetNewDialog
  52.             IMPORT    GetNewDialog
  53.         endif
  54.     
  55.         ifnd    CloseDialog
  56.             IMPORT    CloseDialog
  57.         endif
  58.  
  59.         ifnd    DisposeDialog
  60.             IMPORT    DisposeDialog
  61.         endif
  62.         ifnd    ParamText
  63.             IMPORT    ParamText
  64.         endif
  65.     
  66.         ifnd    ModalDialog
  67.             IMPORT    ModalDialog
  68.         endif
  69.     
  70.         ifnd    DialogSelect
  71.             IMPORT    DialogSelect
  72.         endif
  73.     
  74.         ifnd    DrawDialog
  75.             IMPORT    DrawDialog
  76.         endif
  77.     
  78.         ifnd    UpdateDialog
  79.             IMPORT    UpdateDialog
  80.         endif
  81.  
  82. **Time
  83.         ifnd    ReadDateTime
  84.             IMPORT    ReadDateTime
  85.         endif
  86.     
  87.         ifnd    GetDateTime
  88.             IMPORT    GetDateTime
  89.         endif
  90.     
  91.         ifnd    GetTime
  92.             IMPORT    GetTime
  93.         endif
  94.     
  95.         ifnd    SecondsToDate
  96.             IMPORT    SecondsToDate
  97.         endif
  98.     
  99.         ifnd    SysBeep
  100.             IMPORT    SysBeep
  101.         endif
  102.     
  103. **Debugger
  104.         ifnd    Debugger
  105.             IMPORT    Debugger
  106.         endif
  107.     
  108.         ifnd    DebugStr
  109.             IMPORT    DebugStr
  110.         endif
  111.  
  112. **Windows
  113.         ifnd    GetNewWindow
  114.             IMPORT    GetNewWindow
  115.         endif
  116.  
  117.         ifnd    GetNewCWindow
  118.             IMPORT    GetNewCWindow
  119.         endif
  120.  
  121.         ifnd    ShowWindow
  122.             IMPORT    ShowWindow
  123.         endif
  124.  
  125.         ifnd    CloseWindow
  126.             IMPORT    CloseWindow
  127.         endif
  128.  
  129.         ifnd    DisposeWindow
  130.             IMPORT    DisposeWindow
  131.         endif
  132.  
  133.     endif
  134.